home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / O9B90O (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  778 b   |  16 lines

  1. package java.io;
  2.  
  3. public class FileReader extends InputStreamReader {
  4.    public FileReader(File file) throws FileNotFoundException {
  5.       super(new FileInputStream(file));
  6.    }
  7.  
  8.    public FileReader(FileDescriptor fd) {
  9.       super(new FileInputStream(fd));
  10.    }
  11.  
  12.    public FileReader(String fileName) throws FileNotFoundException {
  13.       super(new FileInputStream(fileName));
  14.    }
  15. }
  16.